:root {
  --background-color: #ffffff;
  --background-color-2: #c5c5c5;
  --text-color: #000000;
  --hover-color: rgb(123, 123, 236);
  --cta: rgb(255, 157, 0);
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Outfit", sans-serif;

  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

html {
  font-size: 14px;
  scroll-behavior: smooth;
}

.space {
  height: 20rem;
  clear: both;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #000000;
    --background-color-2: rgb(40, 40, 40);
    --text-color: #ffffff;
  }
  .accordion-image-1 {
    content: url('imagenes/imagenes_beflex/bf1-white-nobackground.png'); /* Replace with dark mode image */
  }
  .accordion-image-2 {
    content: url('imagenes/imagenes_beflex/bf2-white-nobackground.png'); /* Replace with dark mode image */
  }
  .accordion-image-3 {
    content: url('imagenes/imagenes_beflex/bf3-white-nobackground.png'); /* Replace with dark mode image */
  }
  .accordion-image-4 {
    content: url('imagenes/imagenes_beflex/bf4-white-nobackground.png'); /* Replace with dark mode image */
  }
}
/* Golden ratio */
h1 {
  font-size: 3.14rem; /* 44px / 14 */
  line-height: 3.57rem; /* 50px / 14 */
}

h2 {
  font-size: 2.4rem; /* 28px / 14 */
  line-height: 2.86rem; /* 40px / 14 */
}

h3 {
  font-size: 1.29rem; /* 18px / 14 */
  line-height: 2.71rem; /* 38px / 14 */
}

p {
  font-size: 1.07rem;
  /* line-height: 2.29rem;  */
}

a {
  text-decoration: none;
}


@media (max-width: 768px) {
  /* .top-page-slogan {
    flex: 0;
    display: none;
  } */

  .navbar-container {
    
  }
}
.page-top {
  width: 80vw;
  margin: 0 auto;

  display: flex;
  background-color: var(--background-color);
  position: sticky;
  z-index: 1;
  transition: height 1s ease; /* Smooth transition for background color */
  height: fit-content;
}



.logo-container {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  gap: 2rem;

  align-items: center;
  transition: max-height 0.5s ease, opacity 0s ease, transform 0.5s ease; /* Added transform transition */
  max-height: 100px; /* Set an initial max-height */
  opacity: 1; /* Fully visible initially */
}



.top-page-logo {
  flex: 1;
  margin-left: 15px;
  max-height: 60px; /* Limits the height */
  max-width: fit-content;  /* Ensures it doesn’t exceed the container’s width */
  object-fit: contain; 
  transition: width 0.5s ease, height 0.5s ease;
  padding-left: 2rem;
}


.top-page-slogan {
  flex: 2;
  font-size: 1rem;
  margin-top: 25px;
  
}

.navbar-container {
  flex: 1.1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  transition: flex 0.5s ease, opacity 0.5s ease, max-width 0.5s ease; /* Smooth transition for flex and opacity */
}



.navbar-element {
  flex: 1;
  color: var(--text-color);
  text-decoration: none;
  font-size: 1rem;
  text-align: center;
  transition: max-width 0.5s ease;

}


.navbar-element:hover {
  cursor: pointer;
  color: var(--hover-color);
  transition: 0.2s;
}

.dropdown {
  display: inline;
  padding: none;
}

.dropdown a {
  display: block;
  text-decoration: none;
  color: var(--text-color);
  padding: 5px 10px;
}

.dropdown-link:hover {
  background-color: var(--background-color);
  transition: 0.2s;

  color: var(--hover-color);
}

.dropdown .content {
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background-color: var(--background-color);
  position: absolute;
  min-width: 200px;
  font-size: 14px;
  box-shadow: 2px 2px 5px rgb(69, 69, 69);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s 0.3s;
}

.dropdown:hover .content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  max-height: 1000px;
  transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0s;
}

.bump {
  width: 100%;
}


#seccion2 {
  height: 100vh;
  clear: both;
}

#landing-page-header {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  gap: 0.7142857143rem;
  position: relative; /* Ensures the image can overlap without affecting layout */
  height: 100%;
  width: 80%;
  margin: 0 auto;
}

#landing-page-header h1 {
  grid-column: 1/7;
  grid-row: 3/6;
  color: var(--text-color);
  margin-left: 1.4285714286rem;
}

#landing-page-header img {
  position: absolute; /* Allows the image to float above the grid */
  left: 50%; /* Centers the image */
  transform: translateX(-20%); /* Centers the image */
  top: 0;
  width: 80%; /* Ensure the image spans the full width */
  height: auto; /* Maintain the image's aspect ratio */
  z-index: -1; /* Ensure the image stays behind the text */
  object-fit: cover; /* Ensures the image covers the grid area */
  max-width: none; /* Allow the image to be as wide as the container */
}

.hamburger-menu {
  display: none;
}

@media (max-width: 768px) {
  /* Page top */
  .hamburger-menu {
    display: block;
    background: none;

    border: none;

    color: var(--text-color);
    flex: 1;
  }

  .navbar-container {
    display: none;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--background-color-beflex);
    position: absolute;
    top: 100%;
    /* left: 0; */
    right: 0;
    padding: 1rem;
  }

  .navbar-container.active {
    display: flex;
  }



  /* Seccion 2 */
  #landing-page-header img {
    display: none;
  }
  #landing-page-header h1 {
    grid-column: 2/-1;
    grid-row: 3/6;
    color: var(--text-color);
    margin-left: 1.4285714286rem;
  }
  #landing-page-header {
    height: fit-content;
    display: flex;
    margin-top: 4rem;
    margin-bottom: 0;
  }
  #seccion2 {
    height: fit-content;
  }

  /* Seccion 3 */

  .card {
    min-width: 40%;
  }

  /* Seccion 4 */

  /* Seccion BeFlex */
  .beflex-image {
    width: 300px;
  }
}
#landing-page-header a {
  text-decoration: none;
  color: var(--text-color);
}

#landing-page-header button {
  grid-column: 2/4;
  grid-row: 10/11;
  background-color: gold;
  border-radius: 1.2857142857rem;
  transition: all 0.3s ease;
}

#landing-page-header button:hover {
  cursor: pointer;
  transform: scale(1.02);
}

#seccion3 {
  height: fit-content;
  width: 100vw;
  margin-bottom: 5rem;
  margin-top: 5rem;
  clear: both;
}

#seccion3-div {
  position: relative;
  margin: 3.5714285714rem auto;
  display: flex;
  flex-direction: column;
  width: 80%;
  height: 100%;
}

#seccion-3-header2 {
  flex: 1;
  color: var(--text-color);
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

#cards-container {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 0.5rem;
  /* align-items: stretch; */
}

.card {
  flex: 1;
  margin: 0 0.7142857143rem;
  border-radius: 1.0714285714rem;

  background-color: var(--background-color-2);
  color: var(--text-color);

  display: flex;
  flex-direction: column;
  height: 20rem;
}

.card h3 {
  flex: 1;
  margin-left: 0.7142857143rem;
}

.card p {
  flex: 3;
  margin-left: 0.7142857143rem;
}

.cta-button {
  background-color: var(--cta);
  color: var(--background-color);

  width: fit-content;
  padding: 8px;
  text-decoration: none;
  border-radius: 15px;
  border: none;
  margin: 0 auto;
  margin-top: 3.5714285714rem;
  transition: all 0.3s ease-in-out;

  cursor: pointer;
}

.cta-button:hover {
  transform: scale(1.02);
}

#seccion4 {
  height: fit-content;
  width: 100vw;
  clear: both;
}

#seccion4-div {
  height: 100%;
  width: 80%;

  margin: 3.5714285714rem auto;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.seccion4-div-text {
  min-width: 45%;
  flex: 1;
}

#seccion4 h2 {
  color: var(--text-color);
  text-align: center;
  width: 80%;
  margin: 0 auto;
}

#seccion4-div h3,
#seccion4-div p {
  color: var(--text-color);
  width: 100%;
}

.swiper {
  max-height: 30rem;
  flex: 1;
  min-width: 24.3rem;
}

.swiper-slide {
  position: relative;
}



.swiper-slide button:hover {
  transform: scale(1.04);
}

.swiper-slide a {
  text-decoration: none;
  color: var(--text-color);
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#button-info {
  background-color: var(--cta);

  display: block;
  margin: 0 auto;
  height: fit-content;
  width: 10.7142857143rem;
  padding: 0.4285714286rem;
  border-radius: 1.0714285714rem;
  border: none;
}

#button-info:hover {
  transform: scale(1.04);
  cursor: pointer;
}

#button-info a {
  text-decoration: none;
  color: black;
}

#seccion5 {
  margin-top: 14.2857142857rem;
  height: fit-content;
  width: 100vw;
  clear: both;
}

#seccion5-div {
  width: 80%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#seccion5-div h2 {
  color: var(--text-color);
  margin: 0 auto;
  flex: 0.5;
}

#especificaciones-div {
  flex: 2;
}

.tabs {
  border: 1px solid var(--background-color);
  display: flex;
  min-height: 70vh;
  background-color: var(--background-color);
}

.tabs-sidebar {
  width: 21.4285714286rem;
  flex-shrink: 0;
  background-color: transparent;
  margin-top: 7.8571428571rem;
}

.tabs-button {
  display: block;
  padding: 10px;
  background-color: var(--background-color-2);
  color: var(--text-color);
  border: none;
  border-radius: 20px;
  width: 100%;
  height: 2.1428571429rem;
  outline: none;
  cursor: pointer;
  text-align: start;
  margin-top: 3px;
  margin-bottom: 3px;
  transition: all 0.5s ease;
}

.tabs-button:hover {
  opacity: 0.9;
  background-color: rgb(123, 123, 236);
}

.tabs-button--active {
  background-color: rgb(76, 76, 207);
}

.tabs-content {
  padding: 15px;
  display: none;
  width: 100%;
  height: 100%;
}

.tabs-content--active {
  display: block;
  text-align: center;
  color: var(--text-color);
}

.accordion {
  width: 90%;
  max-width: 71.4285714286rem;
  margin: 2rem auto;
}


.accordion-item {
  margin: 0.2142857143rem 0;
  border-radius: 0.5rem;
  background-color: var(--background-color-2);
  padding: 0.3571428571rem;
  transition: all 0.3s ease;
}

.accordion-item:hover .resatlado {
  color: var(--text-color);
}

.resatlado {
  color: rgb(116, 116, 211);
  font-weight: 700;
  transition: all 0.3s;
}

.accordion-item-header {
  max-height: 1.2857142857rem;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.accordion-item-header p {
  font-size: 0.8571428571rem;
}

.accordion-item-header::after {
  content: "+";
  font-size: 1.5rem;
  position: absolute;
  right: 0.7142857143rem;
  transition: all 0.3s ease-in-out;
}

.accordion-item-header.active::after {
  transform: rotate(45deg);
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  text-align: left;
}

.accordion-item-body-content p, ul, ol {
  padding: 1rem;
  line-height: 1.5rem;
  font-size: 0.8571428571rem;
  border-top: 2px solid blue;
  border-image: linear-gradient(to right, black, blue, orange) 1;
}

.accordion-link a { 
  text-decoration: none;
  color: var(--text-color);
}

li {
  padding: 2px;
  font-size: 0.8571428571rem;
  list-style-type: circle;
}

ol li {
  list-style-type: upper-roman;
}

.list-important {
  list-style-type: square;
  margin-left: 1.4285714286rem;
  font-size: 1rem;
  font-weight: 700;
}

.list-important-child {
  margin-left: 2.8571428571rem;
  list-style-type: disc;
}

.pricing-table {
  width: 60%;
  border-collapse: collapse;
  text-align: center;
  color: var(--text-color);
  margin: 0 auto;
}

.pricing-table thead th {
  background-color: var(--background-color);
  color: var(--text-color);
  font-weight: bold;
  padding: 12px;
}

.pricing-table tbody td {
  padding: 12px;
  border-top: 1px solid rgb(147, 143, 143);
}

.pricing-table tbody tr:nth-child(even) {
  background-color: rgb(34, 34, 34);
}

.pricing-table tbody tr:nth-child(odd) {
  background-color: rgb(34, 34, 34);
}

.tabla-implementacion {
  width: 70%;
  margin: 0 auto;
}

.tabla-implementacion th {
  min-width: 1.4285714286rem;
  text-align: center;
}

.tabla-implementacion th:nth-child(1) {
  text-align: end;
}

.tabla-implementacion[data-index="1"] td:nth-child(n+2):nth-child(-n+7) {
  background-color: gold;
}

.tabla-implementacion[data-index="2"] td:nth-child(n+2):nth-child(-n+4) {
  background-color: gold;
}

.tabla-implementacion[data-index="3"] td:nth-child(n+2):nth-child(-n+6) {
  background-color: gold;
}

.tabla-implementacion[data-index="4"] td:nth-child(n+2):nth-child(-n+11) {
  background-color: gold;
}

.tabla-implementacion[data-index="5"] td:nth-child(n+2):nth-child(-n+15) {
  background-color: gold;
}

.tabla-implementacion[data-index="6"] td:nth-child(n+2):nth-child(-n+3) {
  background-color: gold;
}

.tabla-implementacion[data-index="7"] td:nth-child(n+2):nth-child(-n+3) {
  background-color: gold;
}

.tabla-implementacion[data-index="8"] td:nth-child(n+2):nth-child(-n+3) {
  background-color: gold;
}

.tabla-implementacion[data-index="9"] td:nth-child(n+2):nth-child(-n+6) {
  background-color: gold;
}

.tabla-implementacion[data-index="10"] td:nth-child(n+2):nth-child(-n+6) {
  background-color: gold;
}

.tabla-implementacion[data-index="11"] td:nth-child(n+2):nth-child(-n+5) {
  background-color: gold;
}

.tabla-implementacion[data-index="12"] td:nth-child(n+2):nth-child(-n+5) {
  background-color: gold;
}

.tabla-implementacion[data-index="13"] td:nth-child(n+2):nth-child(-n+4) {
  background-color: gold;
}

#accordion-imagenes-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  padding-top: 40px;
}

.image-container {
  position: relative;
  width: fit-content;
  height: fit-content;
  overflow: hidden;
}

.image-container img {
  display: block;
  width: 21.4285714286rem;
  height: auto;
}

.image-container a {
  position: absolute;
  z-index: 11;
  top: 0.7142857143rem;
  left: 0.7142857143rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.image-container button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; /* Adjust size as needed */
  height: 40px;
  border-radius: 50%;
  background-color: #0073e6; /* Circle color */
  color: white; /* Text color */
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
}

.bloque-imagenes {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
  background-color: rgb(124, 124, 128);
  opacity: 0;
  transition: all 0.3s ease;
}

.image-container:hover .bloque-imagenes {
  opacity: 0.6;
}

.image-container:hover a {
  opacity: 1;
}

.accordion-item-body-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.accordion-item-body-content a {
  cursor: pointer;
  margin-left: 0.7142857143rem;
  transition: all 0.3s ease;
}

.accordion-item-body-content a:hover {
  opacity: 0.8;
}

#seccion6 {
  height: 130vh;
  width: 100vw;
  clear: both;
}

#seccion6-div {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

#seccion6-div h2 {
  color: var(--text-color);
  margin: 0 auto;
}

#videos-container {
  margin-top: 5.7142857143rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#videos-container iframe {
  flex: 1 1 300px;
  height: auto;
  max-width: 360px;
  margin: 0.7142857143rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5714285714rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

/*# sourceMappingURL=styles.css.map */


.xtabs {
  border: 1px solid var(--background-color);
  display: flex;
  flex-direction: column;

  justify-content: space-around;

  min-height: 70vh;
  background-color: var(--background-color);
}

.xtabs-sidebar {
  width: 100%;
  flex-shrink: 0;
  background-color: transparent;
  margin-top: 7.8571428571rem;


  gap: 1rem;
  justify-content: flex-start;
  display: flex;
}

.xtabs-button {
  flex: 1;

  display: inline;
  padding: 10px;

  background-color: var(--background-color-2);
  color: var(--text-color);
  border: none;

  

  height: fit-content;
  width: fit-content;

  outline: none;
  cursor: pointer;
  text-align: center;

  transition: all 0.5s ease;
}

.xtabs-button:hover, .xtabs-button:focus {
  background-color: var(--hover-color);
}

.xtabs-content {
  padding: 15px;

  display: none;

  width: 100%;
  height: 100%;
}

.xtabs-content--active {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  color: var(--text-color);
}

.xtabs-content iframe {
  flex: 1 1 300px;
  height: auto;
  max-width: 360px;
  margin: 0.7142857143rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5714285714rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}


.card.hidden {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  pointer-events: none;
  transition: all 1s ease;  

  will-change: transform, opacity;
}

.card.show {
  opacity: 1;
  filter: blur(0);
  /* transform: translateX(0); */
  transition: all 1s ease;
  pointer-events: all;  

  will-change: transform, opacity;
  }


  .fade-0 {
    opacity: 0;
    transform: translateY(-100%);
    filter: blur(4px);
    transition: all 1.2s ease, background-color 0.7s ease-in-out, color 0.7s ease-in-out;

  }
  .fade-in{
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }


  #cards-container .card:nth-child(1) {
    transition-delay: 0ms;
  }
  
  #cards-container .card:nth-child(2) {
    transition-delay: 200ms;
  }
  
  #cards-container .card:nth-child(3) {
    transition-delay: 200ms;
  }
  
  #cards-container .card:nth-child(4) {
    transition-delay: 0ms;
  }



  #seccion-beflex {
    height: fit-content;
    width: 80vw;

    margin: 0 auto;
  }

.div-h1 {
    text-align: center;
    margin-bottom: 6rem;
  }


  .beflex-wrapper {
    width: 100%;
    height: fit-content;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 2rem;

    justify-content: space-around;
    align-items: center;

  }

  .beflex-image {
    max-width: 36rem;
    flex: 1;

    box-shadow: -0.8rem 0.8rem 1rem rgb(69, 69, 69); 
  }

  .div-beflex {
    width: 100%;
    flex: 2;
  }

  .bf-accordion {
    cursor: pointer;
    padding: 18px;
  
    text-align: left;
    border: none;
    outline: none;
    transition: 0.3s;

    display: flex;
    flex-direction: row;
  
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
  
    width: 100%;
    height: 3.5rem;
  }

  .bf-accordion p {
    margin-left: auto;
    font-size: 1.6rem;

    transition: all 0.3s ease;
  }

  .bf-accordion img {
    max-height: 40%;
    max-width: 2rem;
    flex: 1;
  }


  /* .bf-accordion:nth-child(1){
    max-height: 1px;
  } */

  /* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.bf-active, .bf-accordion:hover, .bf-accordion button {
  background-color: var(--background-color-2);
}
.bf-accordion.bf-active p {
  transform: rotate(45deg); /* Targets <p> when its parent has .bf-active */
}
/* Style the accordion panel. Note: hidden by default */
.panel {
  padding: 0 18px;
  background-color: var(--background-color-2);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  width: 100%;

  border-radius: 0rem 0rem 1rem 1rem; /* This is a short hand syntax */
}


.div-accordionbf {
  display: flex;
  flex-direction: row;

  justify-content: space-between;

  width: 100%;
  height: 3.5rem;
}

.bf-link {
  margin: 0 auto;

}

.bf-button {

  background-color: var(--cta);
  color: black;

  height: 2rem;
  width: 9rem;

  border-radius: 1rem;
  border: none;

  cursor: pointer;

}

.bf-button:hover {
  transform: scale(1.03);
}


.div-linkbf {
  width: 100%;
  text-align: center;

  padding-top: 4rem;
}


#seccion7 {
  width: 80vw;
  height: 100vh;

  margin: 5rem auto;
}

.div-bi {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100vh;

  margin: 0 auto;
}

.div-bi img {
  width: 200px;
  margin: 0 auto;
}

.bi-tabs {
  border: 1px solid var(--background-color);
  display: flex;
  flex-direction: column;

  justify-content: space-around;

  height: fit-content;
  background-color: var(--background-color);
}

.bi-tabs-sidebar {
  width: 100%;
  flex-shrink: 0;
  background-color: transparent;
  margin-top: 1rem;


  gap: 1rem;
  justify-content: flex-start;
  display: flex;
}

.bi-tabs-button {
  flex: 1;

  display: inline;
  padding: 10px;

  background-color: var(--background-color-2);
  color: var(--text-color);
  border: none;

  

  height: fit-content;
  width: fit-content;

  outline: none;
  cursor: pointer;
  text-align: center;

  transition: all 0.5s ease;
}

.bi-tabs-button:hover, .bi-tabs-button--active {
  background-color: var(--hover-color);
}


.bi-tabs-content {
  padding: 15px;

  display: none;

  width: 100%;
  height: 100%;
}

.bi-tabs-content--active {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  color: var(--text-color);
}

.bi-tabs-content iframe {
  flex: 1 1 300px;
  height: auto;
  max-width: 360px;
  margin: 0.7142857143rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5714285714rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.bi-tab-div {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;

  width: 100%;
  height: fit-content;

  text-align: left;

  justify-content: space-around;
  gap: 1rem;
}

.bi-texto {
  flex: 1;
}

.bi-texto a {
  cursor: pointer;
  text-decoration: none;

  color: var(--text-color);

  transition: all 0.3s ease-in-out;
}
.bi-texto a:hover {
  color: var(--hover-color);
}
.bi-video {
  flex: 1;

  display: flex;
  flex-direction: column;

  gap: 2rem;
  justify-content: space-around;

  flex-wrap: wrap;
}

.bi-video iframe {
  flex: 1;
}
.bi-video p {
  flex: 2;
  font-style: oblique;
  font-size: 1.2rem;
}

.header-div-bi {
  width: 100%;
  height: fit-content;


  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.header-div-bi img {
  width: 150px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.header-div-bi h2 {
  font-style: italic;
}

#folleto-bi2 {
  color: var(--text-color);
  text-decoration: none;

  cursor: pointer;
}

.cta-button-bi {
  background-color: var(--cta);
  color: var(--background-color);

  width: fit-content;
  padding: 8px;
  text-decoration: none;
  border-radius: 15px;
  border: none;
  margin: 0 auto;

  cursor: pointer;
}

.cta-button-bi:hover {
  transform: scale(1.02);
}


.cta-button-bi a {
  text-decoration: none;
  color: black;
}

.info-bi {
  width: 40%;
  height: fit-content;

  display: flex;
  justify-content: space-around;
  gap: 1rem;

  margin: 0 auto;
}

.bi-link {
  color: var(--text-color);
}